home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#)primitives.h 1.3 9/24/87
- */
- #ifndef primitives_h
- #define primitives_h
-
- #ifndef builtins_h
- #include "builtins.h"
- #endif
- #ifndef assert_h
- #include "assert.h"
- #endif
-
- typedef struct sPrimitiveDesc {
- short number;
- Boolean isFunction:16;
- unsigned char atindex[3];
- char *name;
- Boolean needsResultReg:16;
- unsigned int reuseTemp:16;
- } PrimitiveDesc, *PrimitiveDescPtr;
-
- extern PrimitiveDesc primitives[];
- #endif
-